github.com/klauspost/compress/zstd.decodeOutput.err (field)
48 uses
github.com/klauspost/compress/zstd (current package)
decoder.go#L98: d.current.err = ErrDecoderNilInput
decoder.go#L137: if d.current.err != nil {
decoder.go#L141: return n, d.current.err
decoder.go#L152: if d.current.err != nil {
decoder.go#L156: println("returning", n, d.current.err, len(d.decoders))
decoder.go#L158: return n, d.current.err
decoder.go#L167: if d.current.err == ErrDecoderClosed {
decoder.go#L168: return d.current.err
decoder.go#L175: d.current.err = ErrDecoderNilInput
decoder.go#L202: d.current.err = err
decoder.go#L212: d.current.err = nil
decoder.go#L293: if err2 != nil && (d.current.err == nil || d.current.err == io.EOF) {
decoder.go#L294: d.current.err = err2
decoder.go#L296: d.current.err = io.ErrShortWrite
decoder.go#L299: if d.current.err != nil {
decoder.go#L304: err := d.current.err
decoder.go#L418: if d.current.err != nil {
decoder.go#L449: d.current.err = io.ErrUnexpectedEOF
decoder.go#L459: println("got", len(d.current.b), "bytes, error:", d.current.err, "data crc:", tmp)
decoder.go#L469: if next.err == nil && next.d != nil && next.d.hasCRC {
decoder.go#L475: d.current.err = ErrCRCMismatch
decoder.go#L493: d.current.err = d.frame.reset(&d.syncStream.br)
decoder.go#L494: if d.current.err == nil {
decoder.go#L495: d.current.err = d.setDict(d.frame)
decoder.go#L497: if d.current.err != nil {
decoder.go#L501: d.current.err = ErrDecoderSizeExceeded
decoder.go#L508: d.current.err = d.frame.next(d.current.d)
decoder.go#L509: if d.current.err != nil {
decoder.go#L517: d.current.err = d.current.d.decodeBuf(&d.frame.history)
decoder.go#L519: if d.current.err != nil {
decoder.go#L520: println("error after:", d.current.err)
decoder.go#L534: d.current.err = ErrFrameSizeExceeded
decoder.go#L543: d.current.err = ErrFrameSizeMismatch
decoder.go#L554: d.current.err = d.frame.checkCRC()
decoder.go#L556: d.current.err = d.frame.consumeCRC()
decoder.go#L558: if d.current.err != nil {
decoder.go#L559: println("CRC error:", d.current.err)
decoder.go#L582: if d.current.err == ErrDecoderClosed {
decoder.go#L602: d.current.err = ErrDecoderClosed
decoder.go#L637: err error
decoder.go#L724: out := decodeOutput{err: block.err, d: block}
decoder.go#L753: do := decodeOutput{err: block.err, d: block}
decoder.go#L786: do.err = block.executeSequences(&hist)
decoder.go#L787: hasErr = do.err != nil
decoder.go#L789: println("executeSequences returned:", do.err)
decoder.go#L797: do.err = ErrFrameSizeExceeded
decoder.go#L800: do.err = ErrFrameSizeMismatch
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |